home *** CD-ROM | disk | FTP | other *** search
/ SGI Varsity Update 1998 August / SGI Varsity Update 1998 August.iso / dist / dist6.5 / il_dev.idb / usr / include / il / ilRFFTfImg.h.z / ilRFFTfImg.h
C/C++ Source or Header  |  1998-07-29  |  2KB  |  53 lines

  1. #if 0 
  2.  
  3.     Copyright (c) 1991 SGI   All Rights Reserved
  4.     THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI
  5.     The copyright notice above does not evidence any
  6.     actual or intended publication of such source code,
  7.     and is an unpublished work by Silicon Graphics, Inc.
  8.     This material contains CONFIDENTIAL INFORMATION that
  9.     is the property of Silicon Graphics, Inc. Any use,
  10.     duplication or disclosure not specifically authorized
  11.     by Silicon Graphics is strictly prohibited.
  12.     
  13.     RESTRICTED RIGHTS LEGEND:
  14.     
  15.     Use, duplication or disclosure by the Government is
  16.     subject to restrictions as set forth in subdivision
  17.     (c)(1)(ii) of the Rights in Technical Data and Computer
  18.     Software clause at DFARS 52.227-7013, and/or in similar
  19.     or successor clauses in the FAR, DOD or NASA FAR
  20.     Supplement.  Unpublished- rights reserved under the
  21.     Copyright Laws of the United States.  Contractor is
  22.     SILICON GRAPHICS, INC., 2011 N. Shoreline Blvd.,
  23.     Mountain View, CA 94039-7311
  24.  
  25. #endif
  26. /*
  27.     This class performs a real forward FFT (as an ilOpImg).
  28. */
  29.  
  30. #ifndef _ilRFFTfImg_h_
  31. #define _ilRFFTfImg_h_
  32.  
  33. #include <il/ilOpImg.h>
  34. #include <il/ilFFTOp.h>
  35.  
  36. class ilRFFTfImg : public ilOpImg, private ilFFTOp {
  37. public:
  38.     iflClassListDeclare
  39.     ~ilRFFTfImg();
  40.     // external api: begin
  41.     ilRFFTfImg(ilImage *img = NULL, short option = ilFFTxform2D);
  42.     void setOption(short option);
  43.     // external api: end
  44.  
  45. private:
  46.     short opt;
  47.     void resetOp(); 
  48.     ilStatus prepareRequest(ilMpCacheRequest* req);
  49.     ilStatus executeRequest(ilMpCacheRequest* req);
  50.     ilStatus finishRequest(ilMpCacheRequest* req);
  51. };
  52. #endif
  53.